home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Go To Examples < prev    next >
Encoding:
Text File  |  1996-01-25  |  516 b   |  16 lines  |  [TEXT/ToyS]

  1. tell application "FileMaker Pro"
  2.     go to window 1
  3.     go to record 4
  4.     go to layout 2 of database 2
  5.     go to cell 3 of record 5
  6.     go to request 1
  7.     
  8.     go to (create record) -- make a newly created record active
  9.     go to (duplicate record 1) -- make a newly duplicated record active
  10.     
  11.     go to record after current record -- go to next record
  12.     go to record before current record -- go to previous record
  13.     
  14.     go to layout after current layout -- go to next layout
  15.     go to layout before current layout -- go to previous layout
  16. end tell